/*
	jQuery Coda-Slider v2.0 - http://www.ndoherty.biz/coda-slider
	Copyright (c) 2009 Niall Doherty
	This plugin available for use in all personal or commercial projects under both MIT and GPL licenses.
*/

	
/* Insignificant stuff, for demo purposes */

	
	.panel h2.title {
	margin-bottom: 10px;
	color: #900;
	margin-top: 15px;
	visibility: hidden;
}

	.panel h3.title {
	margin-bottom: 10px;
	color: #900;
	text-align: center;
}

	.panel h4.title {
	margin-bottom: 10px;
	color: #084A94;
	text-align: right;
	padding-left: 60;
}

	noscript div {
	background: #ccc;
	border: 1px solid #900;
	padding: 5px;
	width: 800px;
}

	
/* Most common stuff you'll need to change */

	.coda-slider-wrapper { padding: 25px 0 }
	.coda-slider { background: #FFF }
	
	/* Use this to keep the slider content contained in a box even when JavaScript is disabled */
	.coda-slider-no-js .coda-slider { height: 10px; overflow: auto !important; padding-right: 10px }
	
	/* Change the width of the entire slider (without dynamic arrows) */
	.coda-slider, .coda-slider .panel {
	width: 0px
} 
	
	/* Change margin and width of the slider (with dynamic arrows) */
	.coda-slider-wrapper.arrows .coda-slider, .coda-slider-wrapper.arrows .coda-slider .panel { width: 750px }
	.coda-slider-wrapper.arrows .coda-slider { margin-bottom: 0px }
	
	/* Arrow styling */
	.coda-nav-left a, .coda-nav-right a {
	background: #FFF;
	color: #084A94;
	padding-top: 15px;
	width: 20px;
	text-align: left;
	position: relative;
	font-size:42px;
}
	
	/* Tab nav */
	.coda-nav ul li a.current {
	background: #EEEEEE;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #FFF;
	border-left: 1px solid #CCC;
	border-right: 1px solid #CCC;
	font-weight: bold;
	padding-left: 15px;
	padding-right: 15px;
	
	}
	
	/* Panel padding */
	.coda-slider .panel-wrapper {
	padding: 0px;
	}
	
	/* Preloader */
	.coda-slider p.loading {
	padding: 20px;
	text-align: left;
}

/* Don't change anything below here unless you know what you're doing */

	/* Tabbed nav */
	.coda-nav ul {
	clear: both;
	display: block;
	
/* margin-left was originally 'margin: auto;' as it is now, it centers the numbers*/	
	margin-left: 25px;
	overflow: hidden;
}
	.coda-nav ul li { display: inline }
	.coda-nav ul li a {
	background: #fff;
	color: #084A94;
	display: block;
	float: left;
	padding: 3px 7px;
	padding-left: 14px;
	padding-right: 12px;
	text-decoration: none;
	border-bottom: 1px solid #CCC;
}
	
	/* Miscellaneous */
	.coda-slider-wrapper {
	clear: both;
	overflow: hidden;
	width: 800px;
	background-color: #FFF;
}

	.coda-slider {
	float: left;
	overflow: hidden;
	position: relative;
}

	.coda-slider .panel { 
	display: block; 
	float: left;
}
	
	.coda-slider .panel-container {
	position: relative;
}

	.coda-nav-left, .coda-nav-right {
	float:left;
}
	
	.coda-nav-left a, .coda-nav-right a {
	display: inline-block;
	text-align: left;
	text-decoration: none;
	padding-left: 5px;
}
	
